iT邦幫忙

2022 iThome 鐵人賽

DAY 11
0
Software Development

讓python 解決麻煩事系列 第 11

下載旅遊景點圖片

  • 分享至 

  • xImage
  •  

import requests

with open('img/pic1.jpg', 'wb') as handle:
response = requests.get("https://www.taiwan.net.tw/pic.ashx?qp=1/big_scenic_spots/pic_3229_28.jpg&sizetype=2", stream=True)

if not response.ok:
    print(response)

for block in response.iter_content(1024):
    if not block:
        break

    handle.write(block)

上一篇
python連接資料庫
下一篇
自動批次處理旅遊圖片
系列文
讓python 解決麻煩事20
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言